Skip to content

Commit 89dc574

Browse files
committed
feat(ui): update llm action options in start_chat
1 parent 2305616 commit 89dc574

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/hf_demo_space/app.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,8 @@ async def start_chat():
7878
res = await cl.AskActionMessage(
7979
content="Select the LLM to power Agent Tide! You can use one of the following free options or configure your own via api key! We recommend `gpt-4.1` or `sonnet-4` for ultimate performance (don't worry we are not logging api keys, you can check the code yourself)! Bear in mind that free alternatives can be context and rate limited.",
8080
actions=[
81-
cl.Action(name="deepseek/deepseek-chat-v3.1:free", payload={"model": "deepseek/deepseek-chat-v3.1:free"}, label="deepseek-chat-v3.1"),
8281
cl.Action(name="qwen3-coder", payload={"model": "qwen/qwen3-coder:free"}, label="qwen3-coder"),
83-
cl.Action(name="grok-4-fast", payload={"model": "x-ai/grok-4-fast:free"}, label="grok-4-fast"),
82+
cl.Action(name="gpt-oss-20b", payload={"model": "openai/gpt-oss-20b:free"}, label="gpt-oss-20b"),
8483
cl.Action(name="custom", payload={"model": "custom"}, label="bring your model")
8584
],
8685
timeout=3600

0 commit comments

Comments
 (0)