Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Standardize Python 3.12.4 and dependency versions across examples #89

Merged
merged 22 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
0bd23df
Add Gemini API key to flask_gemini and gemini_generate environments, …
martinibach Nov 28, 2024
1805915
Removed version caret (^) from dependencies and upgraded restack-sdk-…
martinibach Nov 28, 2024
0a68c4a
Update Python version to 3.12.4 in child_workflows and poetry.lock, r…
martinibach Nov 28, 2024
e737058
Update Python version to 3.12.4 in bostondynamics_spot
martinibach Nov 28, 2024
c034289
Update Python version to 3.12.4 in custom_llm_gemini
martinibach Nov 28, 2024
bcdc413
Update Python version to 3.12.4 in defense_quickstart_audio_transcrip…
martinibach Nov 28, 2024
a51ea44
Update Python version to 3.12.4 and remove poetry.lock from .gitignor…
martinibach Nov 28, 2024
14df94b
Update Python version to 3.12.4 and remove poetry.lock from .gitignor…
martinibach Nov 28, 2024
7e9ba06
Add encryption files and update dependencies
martinibach Nov 28, 2024
60fdd12
Update Python version to 3.12.4 and remove poetry.lock from .gitignor…
martinibach Nov 28, 2024
857539e
Update Python version to 3.12.4 and remove poetry.lock from .gitignor…
martinibach Nov 28, 2024
362ae6f
Add .gitignore file and update Python version to 3.12.4 in flask_gemini
martinibach Nov 28, 2024
be7b27b
Add .gitignore file and update Python version to 3.12.4 in flask_toge…
martinibach Nov 28, 2024
05cb8c4
Add .gitignore file and update Python version to 3.12.4 in gemini_gen…
martinibach Nov 28, 2024
5eb48d7
Add .gitignore file and update Python version to 3.12.4 in get_started
martinibach Nov 28, 2024
4bf6eac
Add .env.Example file for Restack Cloud configuration
martinibach Nov 28, 2024
77845f1
Update Python version to 3.12.4 and add .env.Example file
martinibach Nov 28, 2024
b990c2f
Update Python version to 3.12.4 and add .env.Example file
martinibach Nov 28, 2024
e370323
Add .gitignore file and update Python version to 3.12.4 in streamlit
martinibach Nov 28, 2024
b628e03
Update Python version to 3.12.4 and add .env.Example file
martinibach Nov 28, 2024
863c47f
Add .gitignore file and update Python version to 3.12.4
martinibach Nov 28, 2024
f5a693d
unify env example gitignore
martinibach Nov 28, 2024
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
1 change: 1 addition & 0 deletions flask_gemini/.env.Example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GEMINI_API_KEY=<your-gemini-api-key>
10 changes: 5 additions & 5 deletions flask_gemini/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ readme = "README.md"
packages = [{include = "src"}]

[tool.poetry.dependencies]
python = "^3.9"
flask = { version = "^3.0.3", extras = ["async"] }
flask-cors = "^5.0.0"
"^0.0.28"
google-generativeai = "^0.8.3"
python = "3.9"
flask = { version = "3.0.3", extras = ["async"] }
flask-cors = "5.0.0"
google-generativeai = "0.8.3"
restack-ai = "^0.0.40"

[build-system]
requires = ["poetry-core"]
Expand Down
1 change: 1 addition & 0 deletions gemini_generate/.env.Example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GEMINI_API_KEY=<your-gemini-api-key>
4 changes: 2 additions & 2 deletions gemini_generate/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ readme = "README.md"
packages = [{include = "src"}]

[tool.poetry.dependencies]
python = "^3.9"
python = "3.9"
restack-ai = "^0.0.40"
google-generativeai = "^0.8.3"
google-generativeai = "0.8.3"

[build-system]
requires = ["poetry-core"]
Expand Down
4 changes: 2 additions & 2 deletions get_started/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ readme = "README.md"
packages = [{include = "src"}]

[tool.poetry.dependencies]
python = "^3.9"
restack-ai = "^0.0.40"
python = "3.9"
restack-ai = "0.0.40"

[tool.poetry.dev-dependencies]
pytest = "^6.2" # Optional: Add if you want to include tests in your example
Expand Down