|
My Project
|
Static Public Attributes | |
| bool | requires_database = Field(description="Indicates if a more database queries are required to answer the question. The database contains information about the courses offered at the student's college, including course requirements, sections, and meet times. It also has information about the student, including their academic history and their interests.") |
| bool | requires_web_search = Field(description="Indicates if a web search is required to answer the question. If information is needed from both the database and the web, both fields should be set to true.") |
| str | answer = Field(default="", description="The answer to the user's question, if it can be provided without additional information. Should be left blank if either of the first two fields are true. Keep responses clear and concise.") |
| str | info_needed_db = Field(default=None, description="If the advisor cannot answer the question directly, this field should specify what information from the database is needed to answer the question. If no info is needed leave this field blank.") |
| str | info_needed_web = Field(default=None, description="If the advisor cannot answer the question directly, this field should specify what information from the web is needed to answer the question. If no info is needed leave this field blank.") |
|
static |
|
static |
|
static |
|
static |
|
static |