## Notes
A plugin that incorporates [[GPT Assistants]] functionality into Obsidian.
- Right now the plugin AND GPT assistants is in early development, so in its current state it's not as impressive
Learn more about the plugin [[Obsidian Intelligence Readme]]
My personal notes related to development [[My Projects/Obsidian Intelligence]]
### Example Use Cases
#### Dataview query creator assistant
- [[Create a Dataview Assistant with AI]]
#### More Precise Embeddings / Cheaper Integration
- [[GPT Retrieval]] can help you summarize book notes
- Combine notes
- see [[Obsidian Intelligence Readme#Content Creation]]
- Wait, if retrieval is free, isn't it reimbursed for now?
### Comparison with other AI Obsidian Plugins
[[Smart Connections Plugin]] is still superior
## Tasks
- [ ] make demos for each use case:
- [ ] make an obsidian ai poll asking what people use, or what people want
- [ ] change min-width of instructions to more
- [ ] add link to openAI playground somewhere
- [ ] add more streamlined intelligence workflow ? ask what the purpose of each file is, then have instructions accomodate for it
- [ ] change title to "create assistant from active note and links"
- [ ] plan demo of it
- [ ] fix suggestions
- [ ] flesh out patreon benefits
- [ ] maybe i can add text input under each file, which will help create the prompt for them to know when to use it ?
- [ ] fix styling of lists and bullets
- [ ] fix area not being adjustable anymore
- [ ] create announcement video
## Queries
### Projects
```dataview
table Deadline
FROM #project AND [[]] AND !"Hidden" AND !outgoing([[]])
SORT Deadline asc
```
### Inputs
```dataview
table Status, Author
FROM #input AND [[]] AND !"Hidden" AND !outgoing([[]])
SORT file.mtime desc
```
### Other Notes
```dataview
table Created
FROM [[]] AND !#project AND !#input AND !"Hidden" AND !outgoing([[]])
SORT file.mtime desc
```