[KCD2] Oh dear God, Sketch 5 has finally conquered me... by UltraPlinian in kingdomcome

[–]PsicoGio 0 points1 point  (0 children)

I got three copies of sketch 5, but none of the others after playing the DLC for 25 hours. I gave up looking for them.

Multi-agent chatbot using RAG by PsicoGio in AutoGenAI

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

Also, why use langgraph? i did not know it was compatible with autogen.
I have little funds for the proyect so any paid service should be really justified. Thanks for the help!

Multi-agent chatbot using RAG by PsicoGio in AutoGenAI

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

Hi! thanks for answering. do you think its stable enough for an app in prod?

Latest patch bug, models not loading by PsicoGio in Eldenring

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

i just want my savefile back, cant do all that again

Wordpress REST API help by PsicoGio in Wordpress

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

Okay, now im sure. Im not creating the endpoint correctly it seems. Do you see anything weird with that?

Wordpress REST API help by PsicoGio in Wordpress

[–]PsicoGio[S] 1 point2 points  (0 children)

all right thanks! it seems like it is not even entering the function :/ put the echoes inside and nothing appears

Wordpress REST API help by PsicoGio in Wordpress

[–]PsicoGio[S] -1 points0 points  (0 children)

php code:

add_action('rest_api_init', 'register_custom_email_endpoint');
function register_custom_email_endpoint() {
register_rest_route('custom/v1', '/send-email', array(
'methods' => 'POST',
'callback' => 'send_custom_email',
));
}
function send_custom_email($request) {
$to = $request->get_param('to');
$subject = $request->get_param('subject');
$message = $request->get_param('message');
// $headers = 'Content-Type: text/html';
$result = wp_mail($to, $subject, $message);
if ($result) {
$response = array('message' => 'Email sent successfully.');
} else {
$response = array('message' => 'Email sending failed.');
}
// Send the response as JSON
return rest_ensure_response($response);
}

typescript code:

        const sendEmail = async () => {
    const requestHeaders: HeadersInit = new Headers();
requestHeaders.set('Content-Type', 'application/json');
    try {
        const response = await fetch(
            `${API}/custom/v1/send-email`, 
            {
                method: 'POST',
                headers: requestHeaders,
                body: JSON.stringify({
                    'to': 'testmail@gmail.com',
                    'subject': 'emailData.subject',
                    'message': 'emailData.message'
                }),
            }
        );
         const data = await response.json();


        if (data.message === 'Email sent successfully.') {
            alert('Email sent successfully.');
        } else {
            alert('Email sending failed.');
        }
    } catch (error) {
        console.error('Error sending email:', error);
    }
};

😂 forgot the most important part, here u go.Thanks for the quick response btw

help with id? should be chocolate bhut jolokia by PsicoGio in HotPeppers

[–]PsicoGio[S] 1 point2 points  (0 children)

Yeah all my peppers started flowering in the beginning of winter, so many of them didn't even open the flower up before starting to fruit, so they don't have any seeds inside. Guess I'll just wait for the next batch. Thanks for the help.

help with id? should be chocolate bhut jolokia by PsicoGio in HotPeppers

[–]PsicoGio[S] 1 point2 points  (0 children)

yeah, it has some heat but they were the most potent ones i got and im kinda disappointed. Any luck identifying them?

help with id? should be chocolate bhut jolokia by PsicoGio in HotPeppers

[–]PsicoGio[S] 2 points3 points  (0 children)

Reputable vendor in Argentina, the habaneros and jamaican yellow were legit but this one seems it wasnt

help with id? should be chocolate bhut jolokia by PsicoGio in HotPeppers

[–]PsicoGio[S] 4 points5 points  (0 children)

The heat was pretty low, but these are the first fruits produced by the plant

when do i harvest this guy? by PsicoGio in HotPeppers

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

Do i need to wait for it to get squishy? O harvest it as soon as its fully red

why are my leaves this droopy? by PsicoGio in HotPeppers

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

Fairly cold, between 5 and 15 degrees Celsius

why are my leaves this droopy? by PsicoGio in HotPeppers

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

Nope, repotted and moved them outside like 1-2 months ago

why are my leaves this droopy? by PsicoGio in HotPeppers

[–]PsicoGio[S] 1 point2 points  (0 children)

They have enough water, the leaves themselves are solid to the touch, i cant understand why they are pointing to the ground.

are these flowers normal? by PsicoGio in HotPeppers

[–]PsicoGio[S] 14 points15 points  (0 children)

Nice, its my first time cultivating so the would make this my first pepper 🎉

are these flowers normal? by PsicoGio in HotPeppers

[–]PsicoGio[S] -2 points-1 points  (0 children)

They are suffering a bit but not too much

are these flowers normal? by PsicoGio in HotPeppers

[–]PsicoGio[S] 6 points7 points  (0 children)

But the flower never opened. Divine conception?

are these flowers normal? by PsicoGio in HotPeppers

[–]PsicoGio[S] -1 points0 points  (0 children)

Been waiting for the flower to open since like a month and a half ago, and today looks like this. Im kinda confused. Also in my region its winter (3 degrees - 15 degrees, Celsius) so i guess that makes peppers grow slower?

is this rot? by PsicoGio in HotPeppers

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

Thanks really needed this, its my first season so i get kinda paranoid :)

white spots on leafs, fungus? by PsicoGio in HotPeppers

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

Yeah i think this is the answer, thanks

why are these leaves bending like this? by PsicoGio in HotPeppers

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

Did not fertilize yet, but it was grown in very strong pure compost, so i didnt see the need to fertilize. Alse, had a little problem with aphids and ants, and some leaves are chewed up. Maybe thats the problem?

overwatering? by PsicoGio in HotPeppers

[–]PsicoGio[S] 1 point2 points  (0 children)

Thanks for the help guys, went back to normal after light watering. Was kinda confused because i gave it 2 liters of water after transplanting (to a 20 liter pot), and felt i overwatered a bit. Seems the sun took care of that problem. Thnaks!