mirror of
https://github.com/katanemo/plano.git
synced 2026-06-23 15:38:07 +02:00
add preliminary support for llm agents
This commit is contained in:
parent
ffb8566c36
commit
8104eac596
17 changed files with 1508 additions and 79 deletions
|
|
@ -28,4 +28,5 @@ COPY arch/arch_config_schema.yaml .
|
|||
RUN pip install requests
|
||||
RUN touch /var/log/envoy.log
|
||||
|
||||
# ENTRYPOINT ["sh","-c", "python config_generator.py && envsubst < /etc/envoy/envoy.yaml > /etc/envoy.env_sub.yaml && envoy -c /etc/envoy.env_sub.yaml --log-level trace 2>&1 | tee /var/log/envoy.log"]
|
||||
ENTRYPOINT ["sh","-c", "python config_generator.py && envsubst < /etc/envoy/envoy.yaml > /etc/envoy.env_sub.yaml && envoy -c /etc/envoy.env_sub.yaml --component-log-level wasm:debug 2>&1 | tee /var/log/envoy.log"]
|
||||
|
|
|
|||
|
|
@ -101,6 +101,8 @@ properties:
|
|||
type: number
|
||||
optimize_context_window:
|
||||
type: boolean
|
||||
use_agent_orchestrator:
|
||||
type: boolean
|
||||
system_prompt:
|
||||
type: string
|
||||
prompt_targets:
|
||||
|
|
@ -167,6 +169,8 @@ properties:
|
|||
type: object
|
||||
additionalProperties:
|
||||
type: string
|
||||
pass_context:
|
||||
type: boolean
|
||||
additionalProperties: false
|
||||
required:
|
||||
- name
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue