-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP * Working solution. Pending translation and tests. * Fixed method signature * Updated headers * Another try * Fixed more tests * Update edit.vue * Fixed tests * Cleanup * coverage tool * Fixed some tests * Fixed more tests * More tests and UI fixes * Added missing translation entry * More fixes * Fixed tests * Final touches
- Loading branch information
1 parent
8136c57
commit a845c5d
Showing
28 changed files
with
3,500 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,8 @@ node_modules | |
|
||
playwright-report | ||
test-results | ||
salt | ||
salt | ||
|
||
notebooks/**/*.csv | ||
notebooks/**/*.json | ||
notebooks/**/*.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,5 @@ pillow-avif-plugin>=1.4.3 | |
pytest | ||
openai | ||
azure-cosmos | ||
jsonschema | ||
jsonschema | ||
azure-search-documents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// 200 | ||
POST http://localhost:7071/api/calc-nutrition HTTP/1.1 | ||
content-type: application/json | ||
|
||
[ | ||
{"quantity": 100, "unit": "gram", "id": "748967"} | ||
] | ||
|
||
### | ||
{"quantity": 100, "unit": "gram", "id": "2% milk"}, | ||
{"quantity": 100, "unit": "gram", "id": "bread flour"}, | ||
{"quantity": 100, "unit": "gram", "id": "table salt"}, | ||
{"quantity": 100, "unit": "gram", "id": "sugar"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
POST http://localhost:7071/api/lookup-ingredients | ||
Content-Type: application/json | ||
|
||
["bread flour", "eggs"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
POST http://localhost:7071/api/parse-recipe | ||
Content-Type: application/json | ||
|
||
{ | ||
"url": "https://www.allrecipes.com/recipe/98554/brazilian-cheese-bread-pao-de-queijo/", | ||
"downloadImage": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,4 +60,4 @@ content-type: application/json | |
|
||
{ | ||
"code": "YKYKSF" | ||
} | ||
} |
Oops, something went wrong.