Skip to content

ScoutOS - Framework for Building Agentic Workflows

License

Notifications You must be signed in to change notification settings

scoutos/scoutos-python

Repository files navigation

Scout

Build LLM Apps

Requirements

  • Python ^3.10

Installation

Latest Published Version

  • With pip: pip install scoutos
  • With poetry: poetry add scoutos

Current Development Version (HEAD of main branch)

  • With pip: pip install git+https://github.com/otherwillhq/scoutos-python
  • With poetry: poetry add scoutos --git https://github.com/otherwillhq/scoutos-python

Pinning to a specific commit

Given that the version currently at the HEAD of the default branch should be considered unstable, you can also pin a version to a specific SHA. You can't to this via the CLI, but you can specify a specific commit in your pyproject.toml as follows (making sure to replace the rev with your desired SHA):

[tool.poetry.dependencies]
scoutos = { git = "https://github.com/otherwillhq/scoutos-python.git", rev = "ab1ee13c"}