Seamlessly Integrating AI with the Web
We enable AI systems to interact with websites by pinpointing and isolating essential interactive elements for smooth navigation.
To learn more about the library, check out the documentation 📕.
Quick start
With pip:
pip install agent_amory_core
(optional) install playwright:
playwright install
Spin up your agent:
from langchain_openai import ChatOpenAI
from agent_amory_core import Agent
import asyncio
async def main():
agent = Agent(
task="Find a one-way flight from Bali to Oman on 12 January 2025 on Google Flights. Return me the cheapest option.",
llm=ChatOpenAI(model="gpt-4o"),
)
result = await agent.run()
print(result)
asyncio.run(main())
And don't forget to add your API keys to your .env file.
OPENAI_API_KEY=
For other settings, models, and more, check out the documentation 📕.
Examples
For examples see the examples folder
Contributing
Contributions are welcome! Feel free to open issues for bugs or feature requests.
Local Setup
To learn more about the library, check out the local setup 📕.
Release files for agent-amory-core 0.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| agent_amory_core-0.1.1.tar.gz | 236.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| agent_amory_core-0.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 239.1 kB
Release files / agent_amory_core-0.1.1.tar.gz
| Download URL | agent_amory_core-0.1.1.tar.gz |
|---|---|
| Size | 236.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d3988f532a0bdaa32f2fc0759f07202f1b66a3687b15bb29ba49826bcaf3905a
|
|
BLAKE2b-256 checksum How to use checksums |
2cde0dbe104f0c07dfb0b6a86f7ba4305616a55493b4bede61b66f03d2d2fcb1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.1
|
Release files / agent_amory_core-0.1.1-py3-none-any.whl
| Download URL | agent_amory_core-0.1.1-py3-none-any.whl |
|---|---|
| Size | 2.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
404cab5dc5ea88ad7b799cc60de72ebaa6af04143a9cd57ddfa9b10975770794
|
|
BLAKE2b-256 checksum How to use checksums |
8f8c287ead2be3ef1c299056ae0b169038deabf79d5cf664239005fc7949f095
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.1
|