Skip to content

Commit 943cab0

Browse files
authored
Merge pull request #69 from UiPath/fix/issue_title_description_escape
Fix: Change docs agent model
2 parents 112b312 + e1ad8ca commit 943cab0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

samples/github-docs-agent/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async def make_graph():
2828

2929
tools = client.get_tools()
3030
print(tools)
31-
model = ChatAnthropic(model="claude-3-5-sonnet-latest")
31+
model = ChatAnthropic(model="claude-3-7-sonnet-20250219")
3232

3333
def doc_writer_prompt(state: IssueState):
3434
"""Create a prompt that incorporates documentation writing instructions."""
@@ -59,7 +59,7 @@ def doc_writer_prompt(state: IssueState):
5959
- path: The full file path for the documentation
6060
- branch: The branch name (create a new one like "docs/issue-{state["issueNumber"]}")
6161
- message: A clear commit message
62-
- content: The complete documentation content
62+
- content: The complete file content
6363
6464
## PR Creation Guidelines
6565
After creating documentation files, open a pull request that:

samples/github-docs-agent/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "github-docs-agent"
3-
version = "0.0.3"
3+
version = "0.0.5"
44
description = "An automated agent that writes documentation"
55
authors = [{ name = "Cristi Pufu", email = "[email protected]" }]
66
dependencies = [

0 commit comments

Comments
 (0)