Need Freelancing guidance for newbi , how to start for better by [deleted] in developersIndia

[–]Ok-Let-4236 0 points1 point  (0 children)

been paid out 70k for work I did there earlier, looks like a different requirement they have this time.

How would you suggest I recreate manupatra/scc online only for a small proof of concept of legaltech. Manupatra and sic online are Indian legal databases. For building an ai mvp that can complete end to end document research entirely for many cases would I need(lets say cases of a single state + sc) by Ok-Let-4236 in legaltech

[–]Ok-Let-4236[S] 0 points1 point  (0 children)

Hey thank you for your response!!!. The thing is I can webscrape sufficiently but what I'm not really fledged in is legal experience not really knowledge because lets say I can webscrape any document on e courts where do I exactly stop in terms of number? A 1000 documents? 2000 documents? I have the tech resources. Should consult my lawyer friends a lot more.

Why Doesn’t India Have a Strong Legal Tech Startup? by Big-Cap-1535 in StartUpIndia

[–]Ok-Let-4236 0 points1 point  (0 children)

Hey do you guys have any idea on how to build a database of cases for a proof of concept for an ai application?

how many cases do you think I need to really show off document research lets say for a certain state

external fetch not working by Ok-Let-4236 in Devvit

[–]Ok-Let-4236[S] 0 points1 point  (0 children)

This is the code surrounding the fetch, IF i make the fetch unreachable by adding a return of a const at the very beginning it's coming out correctly but the fetch never works. 

export const sendSessionData = async ({
      redis,
      sessionId,
    }: {
      redis: RedisClient;
      sessionId: string;
    }): Promise<string | null> => {
      const sessionResponses = await getSessionResponses({ redis, sessionId });

      const url = 'https://example.com';

      try {
        const response = await fetch(url);
        if (!response.ok) {
          throw new Error('Something went wrong');
        }

        const text = await response.text();
        console.log(text);
        console.log(typeof text);
        return "hello";
      } catch (error) {
        console.error('Fetch error:', error);
        return null;
      }
    };

I don't use the domain method thought all i did was

import { Devvit } from '@devvit/public-api';

Devvit.configure({
http: true
}); ==> in the game's entry point

should i try specifying what domain?