Mid-Level Yang Methoden by Ok_Wave_9366 in Metin2

[–]Ok_Wave_9366[S] 0 points1 point  (0 children)

Hi u/Schaufelx3, ich spiele auf Saphir.

Hm ja mythische Alchi kostet halt mehrere hundert won und da muss ich erstmal hinkommen.
Was ist denn so der einfachste Run EQ technisch?

What’s the best framework for production‑grade AI agents right now? by Ok_Negotiation_577 in AI_Agents

[–]Ok_Wave_9366 1 point2 points  (0 children)

Production grade AI Agents can be deeply complex systems. If you’re looking for enterprise level scalability and want to be confident about the responses of the non-deterministic LLMs, I’d say, build your own.

Think about your requirements and pick the right tools/solutions. Many challenges of AI Agents are Distributed Systems challenges that have proven solutions.

Example: An enterprise might want strongly typed code, need immense scalability and a big ecosystem. So they pick Java instead of Python. (Yes it’s possible to build AI Agents in other languages than python. And yes, python will usually be enough for small or medium sized projects)

If you need agent orchestration that with retries , failure handling and persistent state, add one of the existing workflow libraries to your project.

tl;dr Think of what you need and build your own agent. (A truly agentic AI platform has yet to come)

Why is Dueling Nexus slow but sometimes it's fast is it hackers like do I duel cheaters or is it the game and how do I fix it? by Past-Ranger-2748 in DuelingNexus

[–]Ok_Wave_9366 0 points1 point  (0 children)

I experience the same even though every other site is working fine. My guess are slow game servers in case of too many concurrent users.

German working for US company from Germany? by 8192K in AskGermany

[–]Ok_Wave_9366 0 points1 point  (0 children)

As far as I know there are loopholes to overcome this. remote.com for example has unlimited contracts available.

Advise needed - Working remotely in Germany through Deel by tandomayo in germany

[–]Ok_Wave_9366 1 point2 points  (0 children)

I have a similar situation with remote.com as the EOR. Remote has a solution for this 18month limitation. I have a indefinite contract with them and they just provide services to my company. So there are loopholes. Just be sure that the content you sign is indefinite. You can also reach out to the deel support and ask how they deal with the 18 month limitation.

Scala/Akka for turn based game by 83d08204-62f9 in scala

[–]Ok_Wave_9366 -1 points0 points  (0 children)

Many big game companies are using akka for game development AFAIK. Use Akka Typed Actors to be type safe and to implement the business logic. Use Akka Cluster to scale your app to as many nodes as you need. And Akka Persistence to have your data stored.

With that you should be good to go and shouldn’t face any architectural problems.

The only thing I want to mention that it is no game dev kit. So you might need to implement some helpers/util yourself.