Skip to content

Commit

Permalink
adds collapsible regions to base model editor and adds missing deps t…
Browse files Browse the repository at this point in the history
…o assistant-extensions lib (microsoft#134)
  • Loading branch information
bkrabach authored Oct 16, 2024
1 parent 954991f commit 484ee40
Show file tree
Hide file tree
Showing 7 changed files with 131 additions and 169 deletions.
12 changes: 9 additions & 3 deletions assistants/prospector-assistant/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion libraries/python/assistant-extensions/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,9 @@
"**/.venv": true,
"**/.data": true,
"**/__pycache__": true
}
},
"cSpell.words": [
"openai",
"pdfplumber"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def __init__(
) -> None:
"""
AttachmentsExtension produces chat completion messages for the files in a conversation. These
messages include the text represenations of the files ("attachments"), and their filenames.
messages include the text representations of the files ("attachments"), and their filenames.
These messages can be included in chat-completion API calls, providing context to the LLM about
the files in the conversation.
Expand Down
8 changes: 7 additions & 1 deletion libraries/python/assistant-extensions/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ description = "Add your description here"
authors = [{ name = "Semantic Workbench Team" }]
readme = "README.md"
requires-python = ">=3.11"
dependencies = ["assistant-drive>=0.1.0", "semantic-workbench-assistant>=0.1.0"]
dependencies = [
"assistant-drive>=0.1.0",
"docx2txt>=0.8",
"openai>=1.51.2",
"pdfplumber>=0.11.4",
"semantic-workbench-assistant>=0.1.0",
]

[project.optional-dependencies]
attachments = ["docx2txt>=0.8", "pdfplumber>=0.11.2"]
Expand Down
Loading

0 comments on commit 484ee40

Please sign in to comment.