Is there a way to get the full documentation in one set, one page, or at least one place with few sub chapters? I need it to teach AI. #3548
-
Actual AI,is very bad at Flame, for example it suggesed again and again using this:
Yes DragStartInfo and dragStart and not recognized, maybe used in older versions of flame I suppose? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
We used to have an LLM called CommandDash which was trained on Flame, but the company operating it doesn't exist anymore unfortunately. To get all docs in one file you could clone the flame repository and do: find doc/ -type f -name '*.md' -exec cat {} + >/tmp/all_flame_docs.md That should put all the docs in one file located at This is where the source of our docs live: |
Beta Was this translation helpful? Give feedback.
-
On windows I suppose this will work Was CommandDash Online only use? Isn't it still avaialable for Local use? Maybe someone still has the LLM? |
Beta Was this translation helpful? Give feedback.
-
@LeaderBronze it seems the best way indeed would be Lukas' suggestion. To combine all docs and also possibly examples and use it in the prompt! We also pretty much did the same with CommandDash except we used all the code and issues in this GitHub repo and filtered it to find relevant context. But the above solution should also give good results. |
Beta Was this translation helpful? Give feedback.
We used to have an LLM called CommandDash which was trained on Flame, but the company operating it doesn't exist anymore unfortunately.
To get all docs in one file you could clone the flame repository and do:
That should put all the docs in one file located at
/tmp/all_flame_docs.md
.This is where the source of our docs live:
https://github.com/flame-engine/flame/tree/main/doc