Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Configures the new Slack Assistant features, providing a dedicated side panel UI
* The `@assistant.thread_started` listener receives an event when users start new app thread.
* The `@assistant.user_message` listener processes user messages in app threads or from the app **Chat** and **History** tab.

`llm_caller.py`, which handles OpenAI API integration and message formatting. It includes the `call_llm()` function that sends conversation threads to OpenAI's models.
`ai/llm_caller.py`, which handles OpenAI API integration and message formatting. It includes the `call_llm()` function that sends conversation threads to OpenAI's models.

## App Distribution / OAuth

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion listeners/assistant/assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from slack_sdk.errors import SlackApiError

from ..views.feedback_block import create_feedback_block
from ..llm_caller import call_llm
from ai.llm_caller import call_llm


# Refer to https://tools.slack.dev/bolt-python/concepts/assistant/ for more details
Expand Down
2 changes: 1 addition & 1 deletion listeners/events/app_mentioned.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from slack_sdk import WebClient
from slack_bolt import Say

from ..llm_caller import call_llm
from ai.llm_caller import call_llm
from ..views.feedback_block import create_feedback_block

"""
Expand Down