5a929eff by Ean Schuessler

Update AI config to use Brainfood VLLM

- Use crunchy.private.brainfood.com:11434/v1 endpoint
- Model: bf-ai
- API key: brainfood
1 parent 597a142f
...@@ -38,17 +38,17 @@ ...@@ -38,17 +38,17 @@
38 <!-- Sample AI Configuration (for testing) --> 38 <!-- Sample AI Configuration (for testing) -->
39 <!-- ========================================================= --> 39 <!-- ========================================================= -->
40 40
41 <!-- Using localhost:11434 for Ollama (if available) --> 41 <!-- VLLM Configuration for Brainfood -->
42 <!-- Or configure for your VLLM/OpenAI endpoint -->
43 <moqui.mcp.agent.ProductStoreAiConfig 42 <moqui.mcp.agent.ProductStoreAiConfig
44 productStoreId="POPCOMMERCE_RETAIL" 43 productStoreId="POPCOMMERCE_RETAIL"
45 aiConfigId="DEFAULT" 44 aiConfigId="DEFAULT"
46 serviceTypeEnumId="AistOllama" 45 serviceTypeEnumId="AistVllm"
47 description="Default AI Config for Testing (Ollama)" 46 description="Brainfood VLLM for Agent Runtime"
48 endpointUrl="http://localhost:11434/v1" 47 endpointUrl="http://crunchy.private.brainfood.com:11434/v1"
49 modelName="llama3.2:3b" 48 apiKey="brainfood"
49 modelName="bf-ai"
50 temperature="0.7" 50 temperature="0.7"
51 maxTokens="2048" 51 maxTokens="4096"
52 /> 52 />
53 53
54 </entity-facade-xml> 54 </entity-facade-xml>
......