8000 V0.1.1 (#27) · seyeong-han/sdk-python@7445fdb · GitHub
[go: up one dir, main page]

Skip to content

Commit 7445fdb

Browse files
Unshurezastrowmyanxi0830pgrayyclareliguori
authored
* fix: Update the PyPI package description (strands-agents#15) To match the GitHub repository title * README: add link to llama user guide (strands-agents#18) * fix: Update readme to include badges (strands-agents#17) Add common badges for python projects Co-authored-by: Mackenzie Zastrow <zastrowm@users.noreply.github.com> * actions: fix docs dispatch (strands-agents#19) * actions: remove dispatch docs (strands-agents#22) * fix: set user-agent for Bedrock API calls (strands-agents#23) * v0.1.1 release --------- Co-authored-by: Mackenzie Zastrow <3211021+zastrowm@users.noreply.github.com> Co-authored-by: Xi Yan <xiyan@meta.com> Co-authored-by: Mackenzie Zastrow <zastrowm@users.noreply.github.com> Co-authored-by: Patrick Gray <pgrayy@amazon.com> Co-authored-by: Clare Liguori <liguori@amazon.com>
1 parent 44c0c03 commit 7445fdb

File tree

4 files changed

+19
-26
lines changed

4 files changed

+19
-26
lines changed

.github/workflows/dispatch-docs.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
11
# Strands Agents
22

3-
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)
4-
[![Python](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
5-
63
<div align="center">
74
<h2>
85
A model-driven approach to building AI agents in just a few lines of code.
96
</h2>
107

11-
<a href="https://strandsagents.com/">Docs</a>
12-
◆ <a href="https://github.com/strands-agents/docs/tree/main/docs/examples">Samples</a>
13-
◆ <a href="https://github.com/strands-agents/tools">Tools</a>
14-
◆ <a href="https://github.com/strands-agents/agent-builder">Agent Builder</a>
8+
<div align="center">
9+
<a href="https://github.com/strands-agents/sdk-python/graphs/commit-activity"><img alt="GitHub commit activity" src="https://img.shields.io/github/commit-activity/m/strands-agents/sdk-python"/></a>
10+
<a href="https://github.com/strands-agents/sdk-python/issues"><img alt="GitHub open issues" src="https://img.shields.io/github/issues/strands-agents/sdk-python"/></a>
11+
<a href="https://github.com/strands-agents/sdk-python/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/strands-agents/sdk-python"/></a>
12+
<a href="https://pypi.org/project/strands-agents/"><img alt="PyPI version" src="https://img.shields.io/pypi/v/strands-agents"/></a>
13+
<a href="https://python.org"><img alt="Python versions" src="https://img.shields.io/pypi/pyversions/strands-agents"/></a>
14+
</div>
15+
16+
<p>
17+
<a href="https://strandsagents.com/">Docs</a>
18+
◆ <a href="https://github.com/strands-agents/docs/tree/main/docs/examples">Samples</a>
19+
◆ <a href="https://github.com/strands-agents/tools">Tools</a>
20+
◆ <a href="https://github.com/strands-agents/agent-builder">Agent Builder</a>
21+
</p>
1522
</div>
1623

1724
Strands Agents is a simple yet powerful SDK that takes a model-driven approach to building and running AI agents. From simple conversational assistants to complex autonomous workflows, from local development to production deployment, Strands Agents scales with your needs.
@@ -129,6 +136,7 @@ Built-in providers:
129136
- [Amazon Bedrock](https://strandsagents.com/latest/user-guide/concepts/model-providers/amazon-bedrock/)
130137
- [Anthropic](https://strandsagents.com/latest/user-guide/concepts/model-providers/anthropic/)
131138
- [LiteLLM](https://strandsagents.com/latest/user-guide/concepts/model-providers/litellm/)
139+
- [LlamaAPI](https://strandsagents.com/latest/user-guide/concepts/model-providers/llamaapi/)
132140
- [Ollama](https://strandsagents.com/latest/user-guide/concepts/model-providers/ollama/)
133141

134142
Custom providers can be implemented using [Custom Providers](https://strandsagents.com/latest/user-guide/concepts/model-providers/custom_model_provider/)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "strands-agents"
7-
version = "0.1.0"
8-
description = "A production-ready framework for building autonomous AI agents"
7+
version = "0.1.1"
8+
description = "A model-driven approach to building AI agents in just a few lines of code"
99
readme = "README.md"
1010
requires-python = ">=3.10"
1111
license = {text = "Apache-2.0"}

src/strands/models/bedrock.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,10 @@ def __init__(
110110
session = boto_session or boto3.Session(
111111
region_name=region_name or "us-west-2",
112112
)
113+
client_config = boto_client_config or BotocoreConfig(user_agent_extra="strands-agents")
113114
self.client = session.client(
114115
service_name="bedrock-runtime",
115-
config=boto_client_config,
116+
config=client_config,
116117
)
117118

118119
@override

0 commit comments

Comments
 (0)
0