Update examples/chainlit/app.py

This commit is contained in:
Dex
2025-02-20 19:11:50 -06:00
committed by dexhorthy
parent 021149207b
commit 0d3e0f5dec
2 changed files with 1 additions and 6 deletions

View File

@@ -103,7 +103,7 @@ logger = logging.getLogger(__name__)
async def run_chain(messages: list[dict], tools_openai: list[dict], tools_map: dict) -> str:
client = AsyncOpenAI()
response = await client.chat.completions.create(
model="gpt-4",
model="gpt-4o",
messages=messages,
tools=tools_openai,
tool_choice="auto",

View File

@@ -72,11 +72,6 @@ const emailChannel = {
contextAboutUser: 'the support team',
},
}
// Multiple channels
const multiChannel = {
all_of: [slackChannel, emailChannel],
}
```
## Response Options