bouvyd’s avatarbouvyd’s Twitter Archive—№ 2,111

    1. As a side project, I've been trying to see if #LLM can get somewhat good at #odoo development The biggest hurdle I stumbled upon is that LLMs don't really understand the relationships between standard odoo models. They get the ORM quite well for standard use cases, for sure...
  1. …in reply to @bouvyd
    But they don't understand the standard models and how to cleanly interface with them - which is not surprising as it requires not knowing the framework but knowing thousands of models and tens of thousands of fields.
    1. …in reply to @bouvyd
      I'm trying to get a graph db setup with the whole codebase (initially just python, but later perhaps also JS and XML) and have the LLM access it via something like #crewai tools and cypher queries. Will see how it goes...
      1. …in reply to @bouvyd
        The other major problem is OWL. It's somewhat similar to react so LLMs tend to conflate both frameworks in weird ways... And they have no idea of the structure of the client, view registries and global architectures, etc.
        1. …in reply to @bouvyd
          For this, I'm a bit unsure. Perhaps a graph db can help, but it's also a question of training... One step at a time though, let's work with python first ^^