-
Notifications
You must be signed in to change notification settings - Fork 8k
Add Session Saving to AGS #4369
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
Merged
Merged
Changes from 23 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
be6f2f8
fix import issue related to agentchat update #4245
victordibia a127980
Merge branch 'main' into ags_save_sessions
victordibia 6a78308
update uv lock file
victordibia 64a51b3
fix db auto_upgrade logic issue.
victordibia 6b054cf
im prove msg rendering issue
victordibia c5345c8
Support termination condition combination. Closes #4325
victordibia 5800f8d
fix db instantiation bug
victordibia 4646c4e
update yarn.lock, closes #4260 #4262
victordibia c27e782
remove deps for now with vulnerabilities found by dependabot #4262
victordibia 55a9932
update db tests
victordibia 25de819
add ability to load sessions from db ..
victordibia fb5bf1a
format updates, add format checks to ags
victordibia c81cd09
format check fixes
victordibia 7bf3df2
linting and ruff check fixes
victordibia 6a10acd
make tests for ags non-parrallel to avoid db race conditions.
victordibia 332a835
Merge remote-tracking branch 'origin/main' into ags_save_sessions
victordibia 6414f94
format updates
victordibia c3e0d44
fix concurrency issue
victordibia 74490a8
minor ui tweaks, move run start to websocket
victordibia edebda4
lint fixes
victordibia 7f33616
Merge branch 'main' into ags_save_sessions
victordibia 33390ec
update uv.lock
victordibia bc237db
Merge branch 'ags_save_sessions' of github.com:microsoft/autogen into…
victordibia 0b132c3
Update python/packages/autogen-studio/autogenstudio/datamodel/types.py
victordibia e996f26
Update python/packages/autogen-studio/autogenstudio/teammanager.py
victordibia 4fb115f
reuse user proxy from agentchat
victordibia deb9dc4
ui tweaks
victordibia baa66fe
Merge branch 'main' into ags_save_sessions
victordibia e05dde0
Merge branch 'main' into ags_save_sessions
husseinmozannar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,18 @@ | ||
| from .datamodel import * | ||
| from .database.db_manager import DatabaseManager | ||
| from .datamodel import Agent, AgentConfig, Model, ModelConfig, Team, TeamConfig, Tool, ToolConfig | ||
| from .teammanager import TeamManager | ||
| from .version import __version__ | ||
| from .teammanager import * | ||
|
|
||
| __all__ = [ | ||
| "Tool", | ||
| "Model", | ||
| "DatabaseManager", | ||
| "Team", | ||
| "Agent", | ||
| "ToolConfig", | ||
| "ModelConfig", | ||
| "TeamConfig", | ||
| "AgentConfig", | ||
| "TeamManager", | ||
| "__version__", | ||
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
python/packages/autogen-studio/autogenstudio/database/__init__.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| from .db_manager import DatabaseManager | ||
| from .component_factory import ComponentFactory, Component | ||
| from .component_factory import Component, ComponentFactory | ||
| from .config_manager import ConfigurationManager | ||
| from .db_manager import DatabaseManager |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.