| --- |
| license: mit |
| language: |
| - en |
| --- |
| # AgLab |
|
|
| AgLab is a python module for experimenting with AI. |
|
|
| ## Features |
|
|
| - Easily set a system prompt to guide the model's behavior. |
| - Send user prompts to the model and receive responses as text. |
|
|
| ## Usage |
|
|
| ```python |
| import aglab |
| |
| lab = aglab.AgLab("Your name is ag lab llm. You are a helpful assistant.") |
| print(lab.AskAgLabLLM("What is the capital of France, also what is your name?")) |
| ``` |
|
|
| ## Example Output |
|
|
| ``` |
| The capital of France is Paris. My name is ag lab llm. |
| ``` |
|
|
| ## License |
|
|
| MIT License |