Skip to content

Commit a5751b2

Browse files
minor cleanup and bugfixes
1 parent 88ab9b1 commit a5751b2

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
.venv
55
__pycache__
66
*.pyc
7+
.specstory

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ cd openai-assistants-python-quickstart
1616
### 2. Install dependencies
1717

1818
```shell
19-
uv venv
20-
uv pip install -r pyproject.toml
19+
uv sync
2120
```
2221

2322
### 3. Run the FastAPI server

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ dependencies = [
99
"jinja2>=3.1.4",
1010
"openai>=1.52.2",
1111
"python-dotenv>=1.0.1",
12+
"python-multipart>=0.0.20",
1213
"uvicorn>=0.32.0",
1314
]

templates/examples/file-search.html

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
1-
{% extends "base.html" %}
1+
{% extends "layout.html" %}
22

33
{% block content %}
44
<main class="main">
55
<div class="container">
66
<div class="column">
77
{% include "components/file-viewer.html" %}
88
</div>
9-
<div class="chatContainer">
10-
<div class="chat">
11-
{% include "components/chat.html" %}
12-
</div>
13-
</div>
9+
{% include "components/chat.html" %}
1410
</div>
1511
</main>
16-
{% endblock %}
12+
{% endblock %}

uv.lock

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)