Jan Vansteenlandt
                                            Jan Vansteenlandt
                                        
                                    Hey @ruflin I'm happy to see I was on track with my train of thought. I'd agree with not making a folder just to store the one class inside, since...
Ok, that's clear! I'll see when or if I can pick this up. First task is as you mentioned, see what the runtime_mappings support in ElasticSearch and compare that with...
We've already discussed this via e-mail @pietercolpaert , so I'm aware of this issue. I'll look into the issue as soon as I find the time for it. Might re-endulge...
I think a check can be built in if an id exists, if not it will assume that no id exists in any of the placemarks, and that you can...
I got my answer from [this thread](https://github.com/hwchase17/langchain/issues/2303), hope it helps! The code example I got working was the following ``` llm = ChatOpenAI(temperature=0, model_name="gpt-3.5-turbo") memory = ConversationBufferMemory(memory_key='chat_history', return_messages=True, output_key='answer') retriever...
> My tailwind/vite setup had 2-4sec hot reload time. Fixed it by changing double asterisk into single inside tailwind config content selector. > > This was slow: `'./src/**/*.{vue,js,ts,jsx,tsx}',` > >...
Update on the issue, ns'ing is a problem. However I will leave this issue as it is, because we'll may have to update the entire XML reader. This is to...
Ah I see, think I know where the problem is, we used to ignore the enclosure problem because we used a function which by default took a " as an...
http://www.php.net/manual/en/function.str-getcsv.php http://www.php.net/manual/en/function.fgetcsv.php
Hmm, if I use this tiny CSV file for a test: "Postnr","Lokaliteit,endinges","Zonenr","Zonenaam" "1000","BRUSSEL 1","10","Brussels Hoofdstedelijk Gewest" "1020","BRUSSEL 2","10","Brussels Hoofdstedelijk Gewest,," Which has several delimiters in enclosures ( double quotes, see...