Skip to content

Commit a570bbc

Browse files
committed
Fix typo
1 parent 14d9139 commit a570bbc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docker-compose.dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ services:
5050
- SENTRY_DSN
5151
- SENTRY_AUTH_TOKEN
5252
- SENTRY_ORG
53-
- OPENAI_API_KEY
53+
- ANTHROPIC_API_KEY
5454
- PTVSD
5555
- DATABASE_URL=postgresql://somsiad:somsiad@postgres/somsiad
5656
- CLICKHOUSE_URL=http://clickhouse:8123

plugins/chat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ async def hey(self, ctx: commands.Context):
355355
full_text += item.text
356356
if item.citations:
357357
full_text += "".join(
358-
f" ({md_link(urlsplit(c.url).netloc, c.url)})d" for c in item.citations
358+
f" ({md_link(urlsplit(c.url).netloc, c.url)})" for c in item.citations
359359
)
360360
elif item.type == "tool_use":
361361
tool_calls.append(item)

0 commit comments

Comments
 (0)