#need datasets

1 messages · Page 1 of 1 (latest)

spice acorn
#

hello everyone who can provide a dataset that would be like a neurosama
in terms of fun

worldly forum
#

If you need it for an LLM, an open-source Neuro LLM is already coming soon

#

No need to train your own probably

spice acorn
#

vedal seemed to say that he would provide open source code when he got tired of it and it makes him a profit and it's his brainchild so I don't think

#

and if it comes out, then when about

worldly forum
crystal bobcat
#

neurosame nuero

worldly forum
spice acorn
#

so the community recreated the behavior?

worldly forum
#

Something like that, yes

#

Still not quite released though

crystal bobcat
worldly forum
#

But close

worldly forum
spice acorn
#

and will there be some kind of application for management and communication, for example, like Vedal on discord and avatar?

crystal bobcat
worldly forum
spice acorn
#

so they don't have the same functionality as vedal?

worldly forum
#

Well, it can be programmed in with more stuff by interfacing with the webui's API, I have a Discord bot that does so

#

Probably not exactly what you want, but you can use the interface code as a base

spice acorn
#

and with the help of this bot, it will be possible to communicate with her through a discord like vedal

#

I would just like a copy of neurosoma with all the functionality

worldly forum
#

Trough Disocrd text chat at least, you'd need a STT and TTS bot for the voice part

crystal bobcat
worldly forum
#

Yeah, it is not an exact replica, but it does decently well when ran correctly

spice acorn
#

I mean, communicating with her by voice and receiving a message from her by voice, too.

crystal bobcat
#

so if that was your question: Neuro is closed-source

spice acorn
#

in general, it will be difficult because I do not know English enough to talk to someone, I do not know if it will be possible to adapt it into Russian

worldly forum
worldly forum
#

It can be done in the bot that interfaces between the VC and the bot

spice acorn
worldly forum
#

You just need something that has an API

spice acorn
#

and will it be difficult to realize that it will be possible to interrupt her when she speaks and also so that she can do something herself

spice acorn
worldly forum
# spice acorn in what sense

An API is usually something you can send a request into that will return some kind of data you want, in this case you want one API that returns the text from audio and one that returns the audio from text

spice acorn
#

the main question is how to implement it

#

Because I'm a complete zero in this

worldly forum
#

You just send http requests into some documented API, that's how the LLM interface bot works

#

I kinda have an idea of how it would look in Kotlin

#

It would definitely include using Kord for Discord stuff, okhttp for http requests and probably kotlinx.serialization.json for formatting

#

Pretty simple stuff

#

Kotlin is really easy to learn if that's the main concern

spice acorn
#

by the way, regarding translation, if you translate a sentence from one language to another and back twice, almost the whole meaning is lost

worldly forum
#

You would only be translating each sentence once, Russian to English to feed to the LLM and then English to Russian to output

#

The sentence changes in the middle

#

I assume you meant to put that into a translator

spice acorn
#

yes

winter cypressBOT
#

You have unlocked new role

spice acorn
#

for example, I will translate one sentence twice "I assume you meant to put that into a translator" - "I suppose you were going to put this into the translator"

worldly forum
#

The bot would only need to translate one way, since the bot generates its own sentence

spice acorn
#

Oh yeah

worldly forum
#

One translation to English on your input and one translation to Russian on the output

spice acorn
#

yes, then the meaning will remain in the majority

worldly forum
#

Yeah, that would most likely work

#

You just need a library or API that can translate

spice acorn
#

how to make it so that sentences reach the model in chunks so that it can be interrupted

boreal narwhal
spice acorn
worldly forum
#

As I said, it's not released yet, but it'll probably be soon

spice acorn
#

But I didn't even find open-Neuro-12B

worldly forum
worldly forum
worldly forum
spice acorn
#

I realized if you translate very quickly, then the voice is translated into the text slowly anyway, so it will recognize that you started talking and therefore it can be interrupted or recognize that the translation of something has begun

worldly forum
#

That is also a way to do it, although not as flexible

spice acorn
#

in what way is it not so flexible

worldly forum
#

It can't be stopped mid-generation, but if you don't need that, then it should be fine

spice acorn
#

is it possible to explain in more understandable words, it's just that the translator translates it very old

worldly forum
#

If you want to stop the bot while the bot is speaking, you can't do that as eaily without breaking the chatlogs with that method

spice acorn
#

and why not just give him a stop command, for example, at which the response generation stops and he finishes what's left when you start talking

#

or something like that

worldly forum
#

The generation being able to be stopped would require the LLM request to be split into multiple requests, which would slow things down greatly and make translation worse

spice acorn
#

well, then just stop the translation of text into audio or just interrupt it when, for example, she reads to the end of a sentence

worldly forum
#

The translation I'm referring to is the English to Russian step

#

That one basically needs the entire output for the best results

spice acorn
#

or you can ask what kind of speech recognizer you can use to make it respond quickly and consume little

worldly forum
#

The speech recognizer is not the issue with stopping midway, the issue is how we need to handle LLM requests and chatlogs

spice acorn
#

and also speech recognizers if you speak Russian and then you say some English term, it is poorly perceived

#

no, I just don't know which speech recognizer to use for the code, I tried to use one, but it worked so that you speak and it translates it into text in 4-5 seconds in the fastest case

worldly forum
#

Speech conversion requires a really large amount of processing power, Vedal definitly uses cloud compute for that too

spice acorn
#

No one says I want to process it on pu recommend a library that is fast for speech recognition on the cloud or on the internet

worldly forum
#

Then maybe the server you connected to was not fast enough or you had a lot of latency

spice acorn
#

Well, what library can you recommend?

worldly forum
worldly forum
spice acorn
#

by the way, how did Vedal give ai a name so that she would respond to it and give her a character

worldly forum
#

No, it's a prompting trick, I know from building an LLM interface bot

#

You just end the usermade prompt with "$charname:" and then the LLM will continue as if speaking as that character

#

That is of course all internal, so you don't notice it

sweet token
#

no one will just give you the secret sauce, you need to figure it out yourself.

worldly forum
#

Well, figuring out how stuff works is quite fun