[PR #1] [MERGED] feat: add chat api #2

Closed
opened 2026-02-16 02:16:35 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/multi-agents-workflow/pull/1
Author: @marcusschiesser
Created: 9/3/2024
Status: Merged
Merged: 9/4/2024
Merged by: @marcusschiesser

Base: mainHead: ms/add-fastapi


📝 Commits (10+)

  • e54e01e feat: add chat api
  • a68bede refactor: clean code
  • d1d47fd refactor: move create_agent
  • 5fc6f7d fix: align FE format
  • ca63d49 fix: don't reset contexts using 0.11.4
  • ec7b547 feat: add support for chat_history
  • d4f1387 feat: add streaming for workflow
  • 44d47db feat: add streaming for choreography
  • 59ebc9e feat: switch fast api / main endpoint
  • 81caff8 feat: add streaming for orchestrator

📊 Changes

24 files changed (+990 additions, -104 deletions)

View changed files

📝 .env (+3 -0)
📝 README.md (+6 -3)
📝 app/agents/multi.py (+0 -3)
📝 app/agents/planner.py (+36 -16)
📝 app/agents/single.py (+62 -2)
app/api/__init__.py (+0 -0)
app/api/routers/__init__.py (+0 -0)
app/api/routers/chat.py (+43 -0)
app/api/routers/chat_config.py (+48 -0)
app/api/routers/models.py (+227 -0)
app/api/routers/upload.py (+29 -0)
app/api/routers/vercel_response.py (+93 -0)
app/api/services/file.py (+119 -0)
app/api/services/suggestion.py (+60 -0)
📝 app/engine/index.py (+24 -11)
📝 app/examples/choreography.py (+8 -3)
app/examples/factory.py (+33 -0)
📝 app/examples/orchestrator.py (+7 -2)
📝 app/examples/researcher.py (+5 -1)
📝 app/examples/workflow.py (+49 -25)

...and 4 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/run-llama/multi-agents-workflow/pull/1 **Author:** [@marcusschiesser](https://github.com/marcusschiesser) **Created:** 9/3/2024 **Status:** ✅ Merged **Merged:** 9/4/2024 **Merged by:** [@marcusschiesser](https://github.com/marcusschiesser) **Base:** `main` ← **Head:** `ms/add-fastapi` --- ### 📝 Commits (10+) - [`e54e01e`](https://github.com/run-llama/multi-agents-workflow/commit/e54e01e1e4b8aefaff6b3cf98a69e1c3a940d64d) feat: add chat api - [`a68bede`](https://github.com/run-llama/multi-agents-workflow/commit/a68bede5872857fab87e8a1abe1f9bae2d5acd4d) refactor: clean code - [`d1d47fd`](https://github.com/run-llama/multi-agents-workflow/commit/d1d47fd8bc4bb90ecbb58a22470c972f5ea02fcf) refactor: move create_agent - [`5fc6f7d`](https://github.com/run-llama/multi-agents-workflow/commit/5fc6f7dc51ec1f20abe9f3b8e789137515150cb1) fix: align FE format - [`ca63d49`](https://github.com/run-llama/multi-agents-workflow/commit/ca63d49f20469681cdb32b0851b4c458dcaa2f05) fix: don't reset contexts using 0.11.4 - [`ec7b547`](https://github.com/run-llama/multi-agents-workflow/commit/ec7b54748f758651b4bed62c37f97fcc5f10486f) feat: add support for chat_history - [`d4f1387`](https://github.com/run-llama/multi-agents-workflow/commit/d4f138722e75bb391e58f1413813510a9b52bb02) feat: add streaming for workflow - [`44d47db`](https://github.com/run-llama/multi-agents-workflow/commit/44d47db90985800c47f0f01a8eab0b781b096c86) feat: add streaming for choreography - [`59ebc9e`](https://github.com/run-llama/multi-agents-workflow/commit/59ebc9e37f0279c17ee1d3bf51aacc86fea619a3) feat: switch fast api / main endpoint - [`81caff8`](https://github.com/run-llama/multi-agents-workflow/commit/81caff8cf52b561ec708dcc290d8bc24314726c8) feat: add streaming for orchestrator ### 📊 Changes **24 files changed** (+990 additions, -104 deletions) <details> <summary>View changed files</summary> 📝 `.env` (+3 -0) 📝 `README.md` (+6 -3) 📝 `app/agents/multi.py` (+0 -3) 📝 `app/agents/planner.py` (+36 -16) 📝 `app/agents/single.py` (+62 -2) ➕ `app/api/__init__.py` (+0 -0) ➕ `app/api/routers/__init__.py` (+0 -0) ➕ `app/api/routers/chat.py` (+43 -0) ➕ `app/api/routers/chat_config.py` (+48 -0) ➕ `app/api/routers/models.py` (+227 -0) ➕ `app/api/routers/upload.py` (+29 -0) ➕ `app/api/routers/vercel_response.py` (+93 -0) ➕ `app/api/services/file.py` (+119 -0) ➕ `app/api/services/suggestion.py` (+60 -0) 📝 `app/engine/index.py` (+24 -11) 📝 `app/examples/choreography.py` (+8 -3) ➕ `app/examples/factory.py` (+33 -0) 📝 `app/examples/orchestrator.py` (+7 -2) 📝 `app/examples/researcher.py` (+5 -1) 📝 `app/examples/workflow.py` (+49 -25) _...and 4 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 02:16:35 -05:00
yindo closed this issue 2026-02-16 02:16:35 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/multi-agents-workflow#2