mirror of
https://github.com/katanemo/plano.git
synced 2026-07-05 15:52:12 +02:00
wip
Signed-off-by: José Ulises Niño Rivera <junr03@users.noreply.github.com>
This commit is contained in:
parent
6cd05572c4
commit
e61e78242c
23 changed files with 2708 additions and 440 deletions
12
README.md
12
README.md
|
|
@ -25,9 +25,9 @@ Engineered with purpose-built LLMs, Arch handles the critical but undifferentiat
|
|||
To get in touch with us, please join our [discord server](https://discord.gg/rSRQ9fv7). We will be monitoring that actively and offering support there.
|
||||
|
||||
## Demos
|
||||
* [Function Calling](demos/function_calling/README.md) - Walk through of critical function calling capabilities
|
||||
* [Insurance Agent](demos/insurance_agent/README.md) - Build a full insurance agent with arch
|
||||
* [Network Agent](demos/network_agent/README.md) - Build a networking co-pilot/agent agent with arch
|
||||
* [Function Calling](demos/function_calling/README.md) - Walk through of the core function calling capabilities Arch offers
|
||||
* [Insurance Agent](demos/insurance_agent/README.md) - Build a full insurance agent with Arch
|
||||
* [Network Agent](demos/network_agent/README.md) - Build a networking co-pilot/agent agent with Arch
|
||||
|
||||
## Quickstart
|
||||
|
||||
|
|
@ -111,9 +111,9 @@ Make outbound calls via Arch
|
|||
import openai
|
||||
|
||||
# Set the OpenAI API base URL to the Arch gateway endpoint
|
||||
openai.api_base = "http://127.0.0.1:51001/v1"
|
||||
|
||||
# No need to set openai.api_key since it's configured in Arch's gateway
|
||||
openai.api_base = "http://127.0.0.1:12000/v1"
|
||||
# No need to set a specific openai.api_key since it's configured in Arch's gateway
|
||||
openai.api_key = "null"
|
||||
|
||||
# Use the OpenAI client as usual
|
||||
response = openai.Completion.create(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue