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

chg: new notebooks #54

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
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 .cursorrules
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ For any python file, be sure to ALWAYS add typing annotations to each function o

Make sure you keep any comments that exist in a file.

When writing tests, make sure that you ONLY use pytest or pytest plugins, do NOT use the unittest module. All tests should have typing annotations as well. All tests should be in ./tests. Be sure to create all necessary files and folders. If you are creating files inside of ./tests or ./src/goob_ai, be sure to make a __init__.py file if one does not exist.
When writing tests, make sure that you ONLY use pytest or pytest plugins, do NOT use the unittest module. All tests should have typing annotations as well. All tests should be in ./tests. Be sure to create all necessary files and folders. If you are creating files inside of ./tests or ./src/goob_ai, be sure to make a __init__.py file if one does not exist. Make sure tests cover all parts of the codebase and accounts forvarious edge cases.

All tests should be fully annotated and should contain docstrings. Be sure to import the following if TYPE_CHECKING:
from _pytest.capture import CaptureFixture
Expand Down
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Bug Report
about: Report something that is broken or not working as intended
title: ''
labels: 'Type: Bug'
assignees: ''
---

#### Expected Behaviour

#### Actual Behaviour

#### Steps to Reproduce
-
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/code-maintenance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Code Maintenance
about: Project cleanup, improve documentation, refactor code
title: ''
labels: 'Type: Maintenance'
assignees: ''

---

#### Describe Problem

#### Suggest Changes

#### Provide Examples
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: Feature Request
about: Suggest an idea for a new feature or enhancement to existing features
title: ''
labels: 'Type: Feature'
assignees: ''
---

#### Describe Problem

#### Suggest Solution

#### Additional Details
6 changes: 5 additions & 1 deletion .github/dependabot/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,8 @@ googleapis-common-protos==1.63.2
# via opentelemetry-exporter-otlp-proto-grpc
# via pinecone-client
# via protoc-gen-openapiv2
grandalf==0.8
# via goob-ai
greenlet==3.0.3
# via bpython
griffe==0.48.0
Expand Down Expand Up @@ -1268,6 +1270,7 @@ pyowm==3.3.0
pypandoc==1.13
# via unstructured
pyparsing==3.1.2
# via grandalf
# via httplib2
# via matplotlib
pypdf==4.3.1
Expand Down Expand Up @@ -1411,7 +1414,8 @@ questionary==2.0.1
# via pypi-command-line
rank-bm25==0.2.2
# via goob-ai
rapidfuzz==3.9.5
rapidfuzz==3.9.6
# via goob-ai
# via levenshtein
# via pypi-command-line
# via thefuzz
Expand Down
6 changes: 5 additions & 1 deletion .github/dependabot/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,8 @@ googleapis-common-protos==1.63.2
# via opentelemetry-exporter-otlp-proto-grpc
# via pinecone-client
# via protoc-gen-openapiv2
grandalf==0.8
# via goob-ai
groq==0.9.0
# via langchain-groq
grpcio==1.65.4
Expand Down Expand Up @@ -1012,6 +1014,7 @@ pyowm==3.3.0
pypandoc==1.13
# via unstructured
pyparsing==3.1.2
# via grandalf
# via httplib2
# via matplotlib
pypdf==4.3.1
Expand Down Expand Up @@ -1108,7 +1111,8 @@ questionary==1.10.0
# via pypi-command-line
rank-bm25==0.2.2
# via goob-ai
rapidfuzz==3.9.5
rapidfuzz==3.9.6
# via goob-ai
# via levenshtein
# via pypi-command-line
# via thefuzz
Expand Down
Loading
Loading