agentsociety.storage.model¶
Module Contents¶
Classes¶
Experiment model |
Functions¶
Create agent profile table |
|
Create agent status table |
|
Create agent survey table |
|
Create agent dialog table |
|
Create global prompt table |
|
Create pending dialog table |
|
Create pending survey table |
|
Create task result table |
|
Create metric table |
Data¶
API¶
- agentsociety.storage.model.__all__¶
[‘agent_profile’, ‘agent_status’, ‘agent_survey’, ‘agent_dialog’, ‘global_prompt’, ‘pending_dialog’,…
- class agentsociety.storage.model.Experiment¶
Bases:
agentsociety.storage._base.BaseExperiment model
- __tablename__¶
None
- created_at: sqlalchemy.orm.Mapped[datetime.datetime]¶
‘mapped_column(…)’
- updated_at: sqlalchemy.orm.Mapped[datetime.datetime]¶
‘mapped_column(…)’
- property agent_profile_tablename¶
Get agent profile table name
- property agent_status_tablename¶
Get agent status table name
- property agent_dialog_tablename¶
Get agent dialog table name
- property agent_survey_tablename¶
Get agent survey table name
- property global_prompt_tablename¶
Get global prompt table name
- property pending_dialog_tablename¶
Get pending dialog table name
- property pending_survey_tablename¶
Get pending survey table name
- property task_result_tablename¶
Get task result table name
- property metric_tablename¶
Get metric table name
- to_dict()¶