Skip to content

Commit

Permalink
add screen
Browse files Browse the repository at this point in the history
  • Loading branch information
alnutile committed Aug 4, 2024
1 parent f53d794 commit 246a3e2
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 51 additions & 0 deletions tests/fixtures/chrome_extension/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

This will help with the extension for the chrome browser.

![](example_screens.png)


### Authentication

This is standard Bearer Token authentication.
Expand Down Expand Up @@ -94,3 +97,51 @@ curl -X GET \
}
```
# Get Sources
```bash
curl -X GET \
https://api.larallama.io/api/v1/sources \
-H 'Authorization: Bearer [TOKEN]'
```
## Response
```json
{
"data": [
{
"id": 1,
"title": "Github",
"type": "github_source",
"details": "Github Source",
"active": true,
"recurring": "not",
"force": false,
"status": "pending",
"prompt": "[THE PROMPT THEY WANT TO USE]"
},
{
"id": 2,
"title": "Google Search",
"type": "google_search_source",
"details": "Google Search Source",
"active": true,
"recurring": "not",
"force": false,
"status": "pending",
"prompt": "[THE PROMPT THEY WANT TO USE]"
}
],
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"path": "https://api.larallama.io/api/v1/sources",
"per_page": 15,
"to": 1,
"total": 2
}
}
```

0 comments on commit 246a3e2

Please sign in to comment.