Skip to content

Commit

Permalink
Fixed a few imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksandr Movchan committed Jul 4, 2024
1 parent 80a0b52 commit 2572c45
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ See [Tutorial](https://github.com/mobiusml/aana_sdk/blob/main/docs/tutorial.md)
## Project structure

```
aana_app_project/ | top level source code directory for the project
aana_app_project/
├── config/ | various configs, including settings, deployments and endpoints
│ ├── endpoints.py | list of endpoints to deploy
│ ├── deployments.py | list of deployments (models) to deploy
Expand Down
2 changes: 1 addition & 1 deletion aana_app_project/configs/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Settings(AanaSettings):
"""A pydantic model for App settings."""
# Add your custom settings here
# Then, you can access them in your app like this:
# from aana_app_project.settings import settings
# from aana_app_project.configs.settings import settings
# settings.custom_property
pass

Expand Down
2 changes: 1 addition & 1 deletion aana_app_project/core/prompts/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def get_prompt_template(name: str) -> Template:
Use this function to load a prompt templates for LLMs:
```python
from aana_app_project.prompts.loader import get_prompt_template
from aana_app_project.core.prompts.loader import get_prompt_template
template = get_prompt_template("test")
prompt = template.render(your_variable="your_value")
Expand Down

0 comments on commit 2572c45

Please sign in to comment.