nate nowack
nate nowack
I didn't see an explicit constraint on block document names containing hyphenated-lowercase in the [docs](https://docs.prefect.io/concepts/blocks/#saving-blocks) so when calling `.save()` on my`Secret` block, I passed `name='my_api_key'`, which raised something like: ```python...
### First check - [X] I added a descriptive title to this issue. - [X] I used the GitHub search to find a similar request and didn't find it. -...
### First check - [X] I added a descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it. -...
addressing #184 TIL that windows has different (worse) timestamp precision for `time.time()`, such that I need to manually increment the timestamp for the messages in the test case for windows,...
the list of messages provided to the LLM for a given generation should only contain the most relevant messages to producing that generation: - most recent messages - system messages...
ChromaDB uses `sentence-transformers` by default for embeddings, which requires `torch`, which all together makes the footprint of chroma something like ~5GB. We use OpenAI's `text-embedding-ada-002` model offered via `chromadb.utils.embedding_functions`, but...
closes #302
since we already have a weekly process in place to human-curate discourse posts and we have `update_knowledge.py` which already ingests discourse posts for the slack bot, persisting quality QA interactions...
this PR adds an `execute_task_run` method that runs a `TaskServer` for the duration of a single task run, which is very convenient for testing and other one-off use of the...