Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revamp: agents revamped!! #269

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion app/core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@
from app.modules.tasks.task_model import Task # noqa
from app.modules.users.user_model import User # noqa
from app.modules.users.user_preferences_model import UserPreferences # noqa
from app.modules.intelligence.agents.custom_agents.custom_agent_model import CustomAgent # noqa
from app.modules.intelligence.agents_copy.custom_agents.custom_agent_model import (
CustomAgent,
) # noqa
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from app.modules.conversations.conversations_router import (
router as conversations_router,
)
from app.modules.intelligence.agents.agents_router import router as agent_router
from app.modules.intelligence.agents_copy.agents_router import router as agent_router
from app.modules.intelligence.prompts.prompt_router import router as prompt_router
from app.modules.intelligence.prompts.system_prompt_setup import SystemPromptSetup
from app.modules.intelligence.provider.provider_router import router as provider_router
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
CreateConversationRequest,
CreateConversationResponse,
)
from app.modules.conversations.conversation.conversation_service import (
from app.modules.conversations.conversation.conversation_service_copy import (
AccessTypeNotFoundError,
AccessTypeReadError,
ConversationNotFoundError,
Expand Down
Loading
Loading